home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / MacGzip 1.0 / source / Resources / ErrorStrings.r < prev    next >
Text File  |  1995-08-22  |  884b  |  49 lines

  1. /*
  2.  * Rez file for error strings (STR#)
  3.  */
  4.  
  5. #include "Types.r"
  6.  
  7. #include "ErrorStrings.h"
  8.  
  9. #pragma Mark USER_ERROR
  10.  
  11. resource 'STR#' (USER_ERROR, "User Error Strings")
  12. {
  13.     {
  14.             "Please, use a valid suffix (%d-%d chars)",
  15.             "Text Creator must be exactly 4 chars",
  16.             "Bin Type must be exactly 4 chars",
  17.             "Bin Creator must be exactly 4 chars"
  18.     }
  19. };
  20.  
  21. #pragma Mark RES_MANAGER
  22.  
  23. resource 'STR#' (RES_MANAGER, "Resource Manager Strings")
  24. {
  25.     {
  26.         /* [1] */
  27.             "Can't get resource"
  28.     }
  29. };
  30.  
  31. #pragma Mark GENERIC
  32.  
  33. resource 'STR#' (GENERIC, "Generic Error Strings")
  34. {
  35.     {
  36.             "I couldn't save your Preferences",
  37.             "Can't get UPP (%02d)",
  38.             "Can't make new alias",
  39.             "Sorry, System 7 required",
  40.             "Can't install AE Handler",
  41.  
  42.             "This disk is bad",
  43.             "Can't read Internet Preferences.\nMake sure IC is installed",
  44.             "Can't read Fetch Prefs.\nMake sure they are in your Prefs folder",
  45.  
  46.     }
  47. };
  48.  
  49.